home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000049_news@columbia.edu_Sat Jun 3 18:02:47 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17021
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 3 Jun 1995 14:02:53 -0400
  3. Received: by apakabar.cc.columbia.edu id AA08135
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 3 Jun 1995 14:02:51 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: kermit 3.13 question
  9. Date: 3 Jun 1995 18:02:47 GMT
  10. Organization: Columbia University
  11. Lines: 40
  12. Message-Id: <3qq847$7u4@apakabar.cc.columbia.edu>
  13. References: <3qne5b$iep@recepsen.aa.msen.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3qne5b$iep@recepsen.aa.msen.com>,
  18. Jeff Schneider  <jschneid@conch.aa.msen.com> wrote:
  19. >I currently am using kermit 3.13 for dos for terminal emulation to allow
  20. >my users to talk to a RISC 6000 running AIX3.2.5  We have set Kermit up
  21. >to the point that the user doesn't really know that he is using a terminal
  22. >emulator.  Unfortunatly this means that most do not know how to use kermit
  23. >to its fullest ( such as "dial foobar" ).  We are now migrating to laptops
  24. >and this adds the dimension of dialing in from home or hotel.  My problem:
  25. >    1. how can I invoke kemrit with a batch file so that it will either:
  26. >        a. connect directly trough a com port
  27. >        b. dial the modem - area code optional, 
  28. >                    prefix optional
  29. >        c. connect directly through a network card.
  30. >
  31. >I need to work this miracle with as litter user intervention as possible.
  32. >
  33. The answer is: it can be done, but you will have to write the appropriate
  34. script program(s) to do it.  Script programming is documented in "Using
  35. MS-DOS Kermit", supplemented by the KERMIT.UPD file on the Kermit diskette.
  36. Note that the current version of MS-DOS Kermit is 3.14, not 3.13.
  37.  
  38. Still, your script program can't be a mind reader.  It doesn't know if the
  39. laptop it is running on is in the owner's house, in a hotel, on an airplane,
  40. or plugged in to a network (or if it is, whether the network should be used
  41. instead of the serial port or internal modem).  So there will still need
  42. to be some hints from the user.  That is, the user will still have to know
  43. something.  Like whether s/he is in a hotel room or at home.  And what
  44. the dialing prefix is, and whether an area code is needed, etc.
  45.  
  46. In our frenzy to make things easy -- "seamless" -- for users, we make them so
  47. dependent on the tools we develop for them that they become helpless without
  48. them.  I'm in favor of a somewhat more minimalist approach -- make things
  49. easy, sure, but don't hide information from them unnecessarily.  For example,
  50. I never cease to be amazed at the number of people who are astounded to learn,
  51. when (say) Kermit's DIAL command doesn't work for some reason, that they can
  52. actually CONNECT to the modem and type ATDT<phone-number>.  Yes, the don't
  53. have to be helpless in the face of complicated technology.  What is the 90's
  54. word for that...  empowerment?
  55.  
  56. - Frank